fundingList
HTTP method: GET
The fundingList method returns a list of fundings, with dates and amounts for transfers to your merchant bank account. This gives you an overview of all reconciliation files in your account, enabling you to automate the reconciliation process.
API base url
Test URL | https://testgateway.altapaysecure.com/merchant/API/<method> |
Production URL | https://<YourShopName>.altapaysecure.com/merchant/API/<method> |
Request parameters
Parameter | Description | Type | Mandatory |
---|---|---|---|
page | Each page shows 100 fundings. Set the page parameter to control the number of fundings shown. | Integer |
Response parameters
The table shows the most pertinent response values for the method. For a complete list of API response parameters, see API Response structure (XML).
Parameter | Description | Type |
---|---|---|
Fundings |
Contains a set of Funding elements, each describing a specific funding. For more information, see Fundings. |
Integer |
Examples
GET call
https://<YourShopName>.altapaysecure.com/merchant/API/fundingList/?page=0
XML response
<?xml version="1.0" encoding="utf-8" ?> <APIResponse version="20170228"> <Header> <Date>2020-09-29T12:34:56+02:00</Date> <Path>API/fundingList</Path> <ErrorCode>0</ErrorCode> <ErrorMessage></ErrorMessage> </Header> <Body> <Fundings numberOfPages="1"> <Funding> <Filename>TEST_SOAP_My_Company_2017-11-07_16_25_00_EUR</Filename> <ContractIdentifier>1234567890123456</ContractIdentifier> <FundingType>POS</FundingType> <Shops> <Shop>AltaPay Functional Test Shop</Shop> <Shop>AltaPay Functional Test Shop Two</Shop> </Shops> <Acquirer>TestAcquirer</Acquirer> <FundingDate>2010-09-26</FundingDate> <Amount>50.00 EUR</Amount> <CreatedDate>2010-09-27</CreatedDate> <DownloadLink> http://localhost/merchant.php/API/fundingDownload?id=1 </DownloadLink> </Funding> <Funding> <Filename>CreatedByTest</Filename> <ContractIdentifier>1234567890123456</ContractIdentifier> <Shops> <Shop>AltaPay Functional Test Shop</Shop> <Shop>AltaPay Functional Test Shop Two</Shop> </Shops> <Acquirer>TestAcquirer</Acquirer> <FundingDate>2010-09-26</FundingDate> <Amount>50.00 EUR</Amount> <CreatedDate>2010-09-27</CreatedDate> <DownloadLink> http://localhost/merchant.php/API/fundingDownload?id=2 </DownloadLink> </Funding> </Fundings> </Body> </APIResponse>